import { ButtonProps } from "./Button.js"; import * as React from "react"; import * as react_jsx_runtime7 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types1 from "class-variance-authority/types"; //#region src/components/atoms/ActionButtons.d.ts declare const _actionBtn: (props?: ({ tone?: "subtle" | "neutral" | "danger" | "outline" | null | undefined; size?: "sm" | "md" | "lg" | "icon" | null | undefined; } & class_variance_authority_types1.ClassProp) | undefined) => string; type ActionBtnProps = Omit & VariantProps & { label?: React.ReactNode; iconLeft?: React.ReactNode; }; declare function EditButton(props: Omit): react_jsx_runtime7.JSX.Element; declare function DeleteButton(props: Omit): react_jsx_runtime7.JSX.Element; declare function ViewButton(props: Omit): react_jsx_runtime7.JSX.Element; declare function ToggleButton(props: Omit & { active?: boolean; }): react_jsx_runtime7.JSX.Element; declare function ToggleLeftButton(props: Omit): react_jsx_runtime7.JSX.Element; declare function ToggleRightButton(props: Omit): react_jsx_runtime7.JSX.Element; //#endregion export { DeleteButton, EditButton, ToggleButton, ToggleLeftButton, ToggleRightButton, ViewButton }; //# sourceMappingURL=ActionButtons.d.ts.map