import type { Bud } from '@roots/bud-framework';
export type Value = ((hash?: boolean) => boolean | string) | boolean | Bud | string;
export type Parameters = [Value?];
export interface hash {
    (value: Value): Bud;
}
export declare const hash: hash;
