import type { DirectiveHandler } from '../types'; /** * Creates a `bq-show` handler bound to a directive prefix. * * Toggles visibility via CSS `display`. When the element carries transition * attributes, the show transition animates in (after restoring `display`) and * the hide transition animates out before `display: none` is committed. The * commit re-checks the live condition so rapid toggles do not hide an element * that has since become visible again. * * @internal */ export declare const createShowHandler: (prefix?: string) => DirectiveHandler; /** * Handles bq-show directive - toggle visibility (default `bq` prefix). * @internal */ export declare const handleShow: DirectiveHandler; //# sourceMappingURL=show.d.ts.map