import { ComponentProps } from 'react'; import { Button } from '../ui/button'; export type ActionsProps = ComponentProps<"div">; export declare const Actions: ({ className, children, ...props }: ActionsProps) => import("react/jsx-runtime").JSX.Element; export type ActionProps = ComponentProps & { tooltip?: string; label?: string; }; export declare const Action: ({ tooltip, children, label, className, variant, size, ...props }: ActionProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=actions.d.ts.map