import type { ShowWhenCondition } from '@clerk/shared/types';
import type { Snippet } from 'svelte';
type $$ComponentProps = {
    when: ShowWhenCondition;
    children: Snippet;
    fallback?: Snippet;
};
declare const Show: import("svelte").Component<$$ComponentProps, {}, "">;
type Show = ReturnType<typeof Show>;
export default Show;
