/** * diwa-button-pure-utils.ts * ========================== * ARIA helpers for . */ export interface ButtonPureAriaAttributes { 'aria-label'?: string; 'aria-busy'?: 'true'; 'aria-disabled'?: 'true'; } export declare const getButtonPureAriaAttributes: (disabled: boolean, loading: boolean, label: string | undefined, isLink: boolean) => ButtonPureAriaAttributes; //# sourceMappingURL=diwa-button-pure-utils.d.ts.map