export declare const IS_EMPTY: unique symbol; export interface Fragment { [IS_EMPTY](): boolean; toString(): string; } export declare function notEmpty(input: Fragment): boolean; export declare function isEmpty(input: Fragment): boolean;