import type { InputProps, ErrorDetail, InputModeType } from '../../../ts';
declare const ExpandableInputList: import("svelte").Component<{
    values?: Record<string, string>;
    inputClass?: string;
    inputList?: Array<InputProps>;
    numberOfInputOutside?: number;
    fieldSetId: string;
    fieldSetLabel: string;
    fieldSetErrorHeading?: string;
    fieldSetError?: Array<ErrorDetail>;
    fieldSetHelpText?: string;
    expandableAriaLabel?: string;
    expandableText?: string;
    collapsableText?: string;
    showOptionalText?: boolean;
    loadJs?: boolean;
    inputMode?: InputModeType;
}, {}, "values">;
type ExpandableInputList = ReturnType<typeof ExpandableInputList>;
export default ExpandableInputList;
