export type InitialValuesType = { textToRepeat: string; repeatAmount: string; delimiter: string; }; export const initialValues: InitialValuesType = { textToRepeat: '', repeatAmount: '5', delimiter: '' };