/** * Props accepted by the VideoCapturePermissions component. */ export interface VideoCapturePermissionsProps { /** * Callback used to request the compass permission on the device. */ requestCompassPermission?: () => Promise; /** * Callback called when the user has successfully granted the required permissions to the app. */ onSuccess?: () => void; } /** * Component displayed in the Permissions view of the video capture. Used to make sure the current app has the proper * permissions before moving forward. */ export declare function VideoCapturePermissions({ requestCompassPermission, onSuccess, }: VideoCapturePermissionsProps): import("react").JSX.Element;