import type { IconifyIcon } from "@iconify/types";
import type { ButtonAttrs } from "../misc/typing-utils";
type ContentProps = {
    icon: IconifyIcon;
    text?: undefined;
} | {
    icon?: undefined;
    text: string;
} | {
    icon: IconifyIcon;
    text: string;
};
type $$ComponentProps = {
    size?: "small" | "normal" | "medium" | "large";
    color?: "primary-container" | "secondary-container" | "tertiary-container" | "primary" | "secondary" | "tertiary";
    elevation?: "normal" | "lowered" | "none";
} & ContentProps & ButtonAttrs;
declare const FAB: import("svelte").Component<$$ComponentProps, {}, "">;
type FAB = ReturnType<typeof FAB>;
export default FAB;
