import type { Generic } from 'adopted-style-sheets';
declare const ariaCurrentValuePropTypeOptions: readonly ["date", "location", "page", "step", "time", "true", "false"];
export type AriaCurrentValuePropType = (typeof ariaCurrentValuePropTypeOptions)[number];
export type PropAriaCurrentValue = {
    ariaCurrentValue: AriaCurrentValuePropType;
};
export declare const validateAriaCurrentValue: (component: Generic.Element.Component, value?: AriaCurrentValuePropType) => void;
export {};
