/**
 * Interface of aria attribute.
 */
export interface IAria {
    // tslint:disable-next-line:no-reserved-keywords
    type: string;
    values: string[];
    allowUndefined: boolean;
}
