type Props = { label: string; children: any; }; export declare const ButtonComponent: ({ label, children }: Props) => JSX.Element; export declare const TextComponent: ({ label, children }: Props) => JSX.Element; export declare const InputTextComponent: ({ label, children }: Props) => JSX.Element; export declare const CardComponent: ({ label, children }: Props) => JSX.Element; export declare const ButtonGroupComponent: ({ label, children }: Props) => JSX.Element; export {};