import { FC } from "react"; import { FABSProps, ItemProps } from "./FABS.types"; declare const Item: FC; declare const FABS: FC & { Item: typeof Item; }; export default FABS;