import { SelectoEvents, SelectoOptions } from "selecto"; export declare type SelectoEventProps = { [key in keyof SelectoEvents as `on${Capitalize}`]: (e: SelectoEvents[key]) => any; }; export declare type SelectoProps = SelectoOptions & SelectoEventProps;