export type Hash = ReturnType<typeof hash>;
type Props = {
    compact?: boolean;
};
export declare function hash({ compact }?: Props): {
    (tokens: Token[]): string;
    segments: string[];
};
export {};
