import type { FormBaseControlSchema, FormControlProps } from '../types';
/**
 * Repeat
 */
export interface RepeatControlSchema extends FormBaseControlSchema {
    type: 'input-repeat';
    options?: string;
}
export interface RepeatProps extends FormControlProps {
    options?: string;
    placeholder?: string;
}
