import { CurrentTheme, ExtendCSS } from '../../types/shared';
export declare const wrapperStyle: ExtendCSS;
export declare const defaultStyles: ({ theme, disabled, loading, isValid, }: {
    theme: CurrentTheme;
    disabled: boolean;
    loading: boolean;
    isValid: boolean;
}) => ExtendCSS;
export declare const labelStyle: ({ isEmpty, isValid, theme, }: {
    isEmpty: boolean;
    isValid: boolean;
    theme: CurrentTheme;
}) => ExtendCSS;
