import { CSSProperties } from 'react'; import React from 'react'; import { InputProps } from '../types'; import { SelectProps } from './styleds'; declare type ComponentProps = SelectProps & { style?: CSSProperties; }; export declare function useSelect({ name, options, defaultValue, callback }: InputProps): { Component: (props: ComponentProps) => React.JSX.Element; store: [V, React.Dispatch>]; }; export {}; //# sourceMappingURL=index.d.ts.map