export interface PublishPermissions {
    camera: boolean;
    microphone: boolean;
    screenShare: boolean;
    data: boolean;
}
export declare function usePublishPermissions(): PublishPermissions;
