/** * Defines the stacking mode for the expander group. * * @public */ export declare const ExpanderGroupStacking: { /** * Expanders are visually joined together with shared borders. */ readonly Joined: "joined"; /** * Expanders are visually separated with gaps and individual border-radii. */ readonly Separated: "separated"; }; /** * @public */ export type ExpanderGroupStacking = typeof ExpanderGroupStacking[keyof typeof ExpanderGroupStacking]; //# sourceMappingURL=ExpanderGroupStacking.d.ts.map