/// /** * Retrieves the default style for input elements from the configuration. * This function looks up the style configuration defined in a JSON file. * @returns The default style for inputs if specified in the configuration, otherwise undefined. */ export declare const getDefaultStyle: (type: 'select' | 'text' | 'checkbox' | 'radio' | 'number' | 'password' | 'date' | 'email' | 'file' | 'color' | 'range') => import("react").CSSProperties | import("react-select").StylesConfig | undefined;