import { default as React, ComponentProps } from 'react'; import * as RadixSeparator from "@radix-ui/react-separator"; type SeparatorProps = { /** * The CSS class name. */ className?: string; /** * The spacing on either side of the separator. * @default var(--cpd-space-2x) */ spacing?: string; /** * The style of separator. * @default primary */ kind?: "primary" | "secondary" | "section"; } & ComponentProps; /** * A separator component. */ export declare const Separator: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=Separator.d.ts.map