import React from "react"; export interface GlassSeparatorProps extends Omit, "content"> { /** Orientation of the separator */ orientation?: "horizontal" | "vertical"; /** Visual variant */ variant?: "default" | "gradient" | "dashed" | "dotted" | "glow"; /** Size/thickness of the separator */ size?: "sm" | "md" | "lg"; /** Length of the separator (for vertical separators) */ length?: string | number; /** Whether to add decorative elements */ decorative?: boolean; /** Content to display in the center (for horizontal separators) */ content?: React.ReactNode; /** Spacing around the content */ spacing?: "sm" | "md" | "lg"; /** Whether to respect user's motion preferences */ respectMotionPreference?: boolean; /** Accessibility label for screen readers */ "aria-label"?: string; } export declare const GlassSeparator: React.ForwardRefExoticComponent>; export declare const GlassHorizontalSeparator: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const GlassVerticalSeparator: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const GlassGradientSeparator: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const GlassGlowSeparator: React.ForwardRefExoticComponent & React.RefAttributes>; export default GlassSeparator; //# sourceMappingURL=GlassSeparator.d.ts.map