export interface FetchBlockStatusProps { userId: string; } export interface BlockStatusResponse { blocked: boolean; blockId?: string; createdAt?: string; } declare function useFetchBlockStatus(): (props: FetchBlockStatusProps) => Promise; export default useFetchBlockStatus;