import React from "react"; export interface IProps { filePath: string; width: string; height: string; style: any; } declare class Camera extends React.Component { init(filePath: any): Promise; getCameraList(): Promise; capture(): Promise; show(): void; hide(): void; close(): void; constructor(props: any, context: any); render(): JSX.Element; } export default Camera;