import React from "react"; type ExpandButtonProps = { variant: "outlined" | "ghost"; }; export declare const ExpandButton: ({ variant }: ExpandButtonProps) => false | React.JSX.Element; export {};