import React from "react"; import * as react_jsx_runtime70 from "react/jsx-runtime"; //#region ui/fab.d.ts interface FABAction { icon: React.ReactNode; label: string; onPress: () => void; color?: string; } interface FABProps { actions: FABAction[]; className?: string; mainIcon?: React.ReactNode; mainColor?: string; } declare function FAB({ actions, className, mainIcon, mainColor }: FABProps): react_jsx_runtime70.JSX.Element; declare function MiniFAB({ icon, onPress, className, color }: { icon: React.ReactNode; onPress: () => void; className?: string; color?: string; }): react_jsx_runtime70.JSX.Element; //#endregion export { FAB, MiniFAB }; //# sourceMappingURL=fab.d.ts.map