import { FC, HTMLAttributes, PropsWithChildren } from 'react';
export type ActionProps = PropsWithChildren<HTMLAttributes<HTMLButtonElement>> & {
theme?: 'dark' | 'light';
active?: boolean;
disabled?: boolean;
elType?: 'button' | 'span';
};
export declare const Action: FC<ActionProps>;