import { LiffModule } from '@liff/use'; export interface Profile { userId: string; displayName: string; pictureUrl?: string; statusMessage?: string; } export declare function getProfile(): Promise; type Api = () => Promise; export declare class GetProfileModule extends LiffModule { get name(): string; install(): typeof getProfile; } export {};