/**
 * Get the current consent status for a purpose using the purpose ID.
 *
 * ```
 * true: The consent was granted.
 * false: The consent was not granted.
 * undefined: The purpose does not exist.
 * ```
 */
export declare function get(purposeId: string): boolean | undefined;
