import type { StyleSlots } from '../../../core/types'; type CornerBracketSlot = 'root'; declare const cornerBracketStyles: StyleSlots; /** CVA variants for CornerBracket positioning and color. */ declare const bracketVariants: (props?: ({ position?: "br" | "tr" | "tl" | "bl" | null | undefined; variant?: "default" | "accent" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** SVG path data for each corner position. */ declare const BRACKET_PATHS: { readonly tl: "M 0 20 L 0 5 A 5 5 0 0 1 5 0 L 20 0"; readonly tr: "M 0 0 L 15 0 A 5 5 0 0 1 20 5 L 20 20"; readonly bl: "M 0 0 L 0 15 A 5 5 0 0 0 5 20 L 20 20"; readonly br: "M 20 0 L 20 15 A 5 5 0 0 1 15 20 L 0 20"; }; export { cornerBracketStyles, bracketVariants, BRACKET_PATHS }; export type { CornerBracketSlot }; //# sourceMappingURL=CornerBracket.styles.d.ts.map