import type { ValuesOf } from '../../Types/ValuesOf'; /** * `FlipSide` - Defines the flip side of a component. * * @public */ export declare const FlipSide: { /** * `front` - The front side of the flip component. * @default */ readonly Front: "front"; /** * `back` - The back side of the flip component. */ readonly Back: "back"; }; /** * @public */ export type FlipSide = ValuesOf; //# sourceMappingURL=FlipSide.d.ts.map