import { CLAlign, CLPosition, CLSizes, CLColors } from '../../../index.ts'; export interface CLSpinnerProps { /** Set the horizontal alignment of the Spinner on the page. The property can be one of `CLAlign`, e.g. `CLAlign.Left` */ align?: CLAlign; /** Sets the color of the Spinner. The property can be one of `CLColors`, e.g. `CLColors.Primary` */ color?: CLColors; /** Sets the css display property of the Spinner. The property can be one of `CLPosition`, e.g. `CLPosition.Absolute` */ position?: CLPosition; /** Sets the size of the Spinner. The property can be one of `CLSizes`, e.g. `CLSizes.Medium` */ size?: CLSizes; /** Sets a custom ID used for unit tests. */ testId?: string; } declare const _default: import('vue').DefineComponent & Readonly<{}>, { size: CLSizes; color: CLColors; testId: string; position: CLPosition; align: CLAlign; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;