import { MouseEvent, ReactNode, HTMLProps } from 'react';
export type ClickableProps = Omit, 'size' | 'ref' | 'wrap' | 'loop'> & {
type?: 'button' | 'submit' | 'reset';
children: string | ReactNode | ReactNode[];
onClick?: (event: MouseEvent | KeyboardEvent) => void;
};
export declare const Clickable: import("react").ForwardRefExoticComponent, "ref" | "size" | "wrap" | "loop"> & {
type?: "button" | "submit" | "reset";
children: string | ReactNode | ReactNode[];
onClick?: (event: MouseEvent | KeyboardEvent) => void;
} & import("react").RefAttributes>;