import type { ValuesOf } from "../../util/typings.js"; /** * Align-content values supported by {@link Divider}. * @public */ export declare const DividerAlignContents: { readonly center: "center"; readonly start: "start"; readonly end: "end"; }; /** * Type describing alignment options for {@link Divider}. * @public */ export type DividerAlignContent = ValuesOf; /** * Appearance values supported by {@link Divider}. * @public */ export declare const DividerAppearances: { readonly strong: "strong"; readonly brand: "brand"; readonly subtle: "subtle"; }; /** * Type describing appearance options for {@link Divider}. * @public */ export type DividerAppearance = ValuesOf; /** * Orientation values supported by {@link Divider}. * @public */ export declare const DividerOrientations: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; /** * Type describing orientation options for {@link Divider}. * @public */ export type DividerOrientation = ValuesOf; /** * Role values supported by {@link Divider}. * @public */ export declare const DividerRoles: { readonly separator: "separator"; readonly presentation: "presentation"; }; /** * Type describing ARIA roles available to {@link Divider}. * @public */ export type DividerRole = ValuesOf; //# sourceMappingURL=divider.options.d.ts.map