/*! Strand UI | MIT License | dillingerstaffing.com */ import type { ComponentChildren, JSX } from "preact"; export interface SettleProps extends JSX.HTMLAttributes { /** The value shown; a change REPLACES the element so the fade fires (DL 6.9.1). Compare the value the user is told, not a counter. */ on?: string | number | boolean | null; /** Element to render. */ as?: keyof JSX.IntrinsicElements; children?: ComponentChildren; } /** * Fades a region's new state in when the model changes (DL 6.9); the sibling of `Reserve`, which owns the box. * * @example * {count} people */ export declare function Settle({ on, as: Tag, className, children, ...rest }: SettleProps): JSX.Element; export declare namespace Settle { var displayName: string; } //# sourceMappingURL=Settle.d.ts.map