/** * Represents the acceptable values for `aria-current` that can be applied to Framework Components */ export declare enum ARIA_CURRENT { /** * Represents the current date within a collection of dates. */ date = "date", /** * Represents the current location within an environment or context */ location = "location", /** * Represents the current page within a set of pages */ page = "page", /** * Represents the current step within a process */ step = "step", /** * Represents the current time within a set of times */ time = "time", /** * Represents the current item within a set */ true = "true" } export declare const ARIA_CURRENT_LITERALS: { /** * Represents the current date within a collection of dates. */ readonly date: ARIA_CURRENT.date; /** * Represents the current location within an environment or context */ readonly location: ARIA_CURRENT.location; /** * Represents the current page within a set of pages */ readonly page: ARIA_CURRENT.page; /** * Represents the current step within a process */ readonly step: ARIA_CURRENT.step; /** * Represents the current time within a set of times */ readonly time: ARIA_CURRENT.time; /** * Represents the current item within a set */ readonly true: ARIA_CURRENT.true; }; export declare type ARIA_CURRENT_ARGUMENT = keyof typeof ARIA_CURRENT_LITERALS;