import { default as React, ReactNode } from 'react'; import { TSizeAll } from '../../types'; export interface FormComponentWrapperUIProps { isError?: string | boolean; children: ReactNode; size: TSizeAll; /** * If `true`, the whole component will have disabled styles */ disabled?: boolean; /** * Pass `style` from parent component */ style?: React.CSSProperties; /** * Pass `className` from parent component */ className?: string; } export declare const FormComponentWrapperUI: React.ForwardRefExoticComponent>; //# sourceMappingURL=FormComponentWrapperUI.d.ts.map