export declare type ConditionalSegmentProps = { expression: string; }; export declare type UseConditionalSection = { shouldDisplay: boolean; }; export declare function useConditionalSection({ expression }: ConditionalSegmentProps): { shouldDisplay: any; };