import type { Generic } from 'adopted-style-sheets';
import type { Callback } from '../enums';
import type { EventValueOrEventCallback } from '../types/callbacks';
export type LinkOnCallbacksPropType = {
    [Callback.onClick]?: EventValueOrEventCallback<Event, string>;
};
export type PropLinkOnCallbacks = {
    on: LinkOnCallbacksPropType;
};
export declare const validateLinkCallbacks: (component: Generic.Element.Component, value?: LinkOnCallbacksPropType) => void;
