export interface GuardProps {
    value: any;
    cond: string[] | boolean;
    children: JSX.Element;
    height?: string;
}
export declare function Guard({ value, cond, children, height }: GuardProps): import("react/jsx-runtime").JSX.Element;
