import { ComponentProps, FC } from 'react'; type Icons = "left" | "right" | "both"; type Props = { expanded?: boolean; icons?: Icons; }; export declare const Control: FC, keyof Props> & Props>; export {};