/**
* Delete passkey
*
* The client SDK's deletePasskey now natively sends the elevated access
* token (credential:unlink) when one exists in state.
*
* @returns Function to delete passkey for the current user
*
* @example
* ```tsx
* const App = () => {
* const deletePasskey = useDeletePasskey();
*
* return (
*
* );
* }
*/
export declare const useDeletePasskey: () => ((passkeyId: string) => Promise);