import type { PartialElement } from '@furystack/shades';
import type { Palette } from '../services/theme-provider-service.js';
export type FabProps = PartialElement<HTMLButtonElement> & {
    color?: keyof Palette;
};
export declare const Fab: (props: Omit<Partial<HTMLButtonElement>, "style"> & {
    style?: Partial<CSSStyleDeclaration>;
} & {
    ref?: import("@furystack/shades").RefObject<Element>;
} & {
    color?: keyof Palette;
} & Omit<Partial<HTMLElement>, "style">, children?: import("@furystack/shades").ChildrenList) => JSX.Element;
//# sourceMappingURL=fab.d.ts.map