import { JSX } from 'react/jsx-runtime'; declare const STRENGTHS: { readonly subtle: string; readonly strong: string; }; declare const DIRECTIONS: { readonly horizontal: string; readonly vertical: string; }; export type DividerStrength = keyof typeof STRENGTHS; export type DividerDirection = keyof typeof DIRECTIONS; export interface DividerProps { strength?: DividerStrength; direction?: DividerDirection; } export declare function Divider(props: DividerProps): JSX.Element; export {}; //# sourceMappingURL=Divider.d.ts.map