export declare const Container: () => string; export declare const DataPreview: (values: string[]) => string; export declare const FieldGroup: (name: string, label: string, required: boolean, description: string, options: { [key: string]: string; }, selectedOption: string | null, previewValues: string[]) => string; export declare const Buttons: () => string; export declare const Dropdown: (name: string, options: { [key: string]: string; }, selectedOption: string | null) => string;