import * as React from "react";
export interface DividerProps {
    orientation: "vertical" | "horizontal";
    size: "full" | "medium";
    center?: boolean;
    text?: string;
}
export declare const Divider: React.FC<DividerProps>;
