import React from "react";
import "./Loader.scss";
export type Overlay = "lightOverlay" | "darkOverlay" | "darkerOverlay";
export interface Props {
    loaderClass?: string;
    loaderId?: any;
    ariaLabel?: any;
    loaderBackground?: Overlay;
    children: any;
    style?: React.CSSProperties;
}
declare const Loader: ({ loaderClass, loaderId, children, ariaLabel, loaderBackground, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Loader;
