import { CLColors } from '../../../index.ts';
export interface CLA11yButtonProps {
/** Sets the color of the focus outline. The property can be one of `CLColors`, e.g. `CLColors.Primary`. */
color?: CLColors;
/** When set to `false` it will mimic the disabled state of a standard ``. */
enabled?: boolean;
/** When set to true, sets the width of the A11yButton to 100% of it's parent. */
fluid?: boolean;
/** When set to `false` it will not render with rounded corners. */
rounded?: boolean;
/** Sets a custom ID used for unit tests. */
testId?: string;
}
declare const _default: __VLS_WithTemplateSlots & Readonly<{}>, {
color: CLColors;
enabled: boolean;
fluid: boolean;
rounded: boolean;
testId: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
refExpandedArea: HTMLDivElement;
}, HTMLDivElement>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots = T & {
new (): {
$slots: S;
};
};