import { Scale } from '../../variations';
export declare const DIVIDER_SCALES: readonly ["2xs", "xs", "sm", "md", "lg", "xl", "2xl", "3xl"];
export type DividerScales = Extract<Scale, (typeof DIVIDER_SCALES)[number]> | 'none';
export type DividerProperties = {
    /**
     * Spacing around the divider
     */
    scale?: DividerScales;
    /**
     * Whether the divider is vertical or horizontal
     */
    vertical?: boolean;
};
