import { CSSObject } from '@xstyled/styled-components';
import { CreateWuiProps } from '../System';
import { Size } from './theme';
export interface LoaderOptions {
    color?: CSSObject['color'];
    /** Predefined size xs, sm, md, lg or custom size */
    size?: Size;
}
export type LoaderProps = CreateWuiProps<'div', LoaderOptions>;
export declare const Loader: import('../System').CreateWuiComponent<"div", LoaderProps>;
