declare const useNavigatorPermissions: (name: PermissionName, configuration?: object | undefined) => {
    /** The permission status. This will be an empty string if it's still fetching. */
    status: string;
    /** Returns true if the navigator api encounters an issue. */
    error: boolean;
};
export default useNavigatorPermissions;
