import { ButtonHTMLAttributes } from "react";
export type ContentSwitcherProps = {
    size: "small" | "large" | "medium";
    selectedIndex: number;
    disabled?: boolean;
    options: TypeOptions[];
    type: "default" | "icon";
};
type TypeOptions = ButtonHTMLAttributes<HTMLButtonElement> & {
    label?: string;
    IconType?: JSX.Element | ChildNode | string;
    IconDefault?: string;
};
export declare const ContentSwitcher: (props: ContentSwitcherProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map