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 = { [Callback.onClick]?: EventValueOrEventCallback; [Callback.onMouseDown]?: EventCallback; }; export type PropButtonCallbacks = { on: ButtonCallbacksPropType; }; export declare const validateButtonCallbacks: (component: Generic.Element.Component, value?: ButtonCallbacksPropType) => void;