import { SizeValue } from '../../../../utils';
export interface LoaderVariables {
    containerHeights: Record<SizeValue, string>;
    containerWidths: Record<SizeValue, string>;
    svgHeights: Record<SizeValue, string>;
    svgTranslatePosition: Record<SizeValue, string>;
    svgWidths: Record<SizeValue, string>;
    svgTrackColor: string;
    svgTailColor: string;
    svgSecondaryColor: string;
}
export declare const loaderVariables: (siteVariables: any) => LoaderVariables;
