import { FC } from 'react'; import { IButton } from '../Button/types'; interface ExpandButtonProps extends IButton { onExpand: () => void; isExpanded: boolean; } export declare const ExpandButton: FC; export {};