export declare const bgBaselineRel: ({ baseline, root, color, }: {
    baseline: number;
    root: number;
    color?: string;
}) => {
    position: string;
    backgroundRepeat: string;
    backgroundSize: string;
    backgroundImage: string;
};
export declare const bgBaseline: ({ baseline, color, }: {
    baseline: number;
    color: string;
}) => {
    position: string;
    backgroundRepeat: string;
    backgroundImage: string;
    backgroundSize: string;
};
