interface OptionalProps {
    /**
     * The value to check for truthiness.
     */
    value?: string | number | boolean;
    /**
     * The children to render if the value is truthy.
     */
    children: React.ReactNode;
}
export declare const Optional: React.FC<OptionalProps>;
export {};
//# sourceMappingURL=index.d.ts.map