import type { Callback } from '../enums';
import type { EventCallback, EventValueOrEventCallback } from '../types/callbacks';
import type { StencilUnknown } from '../types/unknown';
import type { Generic } from 'adopted-style-sheets';
export type ButtonCallbacksPropType<T> = {
    [Callback.onClick]?: EventValueOrEventCallback<MouseEvent, T>;
    [Callback.onMouseDown]?: EventCallback<MouseEvent>;
    [Callback.onFocus]?: EventCallback<FocusEvent>;
    [Callback.onBlur]?: EventCallback<FocusEvent>;
};
export type PropButtonCallbacks<T> = {
    on: ButtonCallbacksPropType<T>;
};
export declare const validateButtonCallbacks: (component: Generic.Element.Component, value?: ButtonCallbacksPropType<StencilUnknown>) => void;
