import { ReactNode } from "react";
type TCameraContentWrapperProps = {
    children?: ReactNode;
    onBack: () => void;
    idPrefix: string;
    title: string;
    className?: string;
    instructions?: {
        icon?: ReactNode;
        text?: string;
    };
    hideInstructions?: boolean;
};
declare const CameraContentWrapper: ({ children, onBack, idPrefix, title, className, instructions, hideInstructions }: TCameraContentWrapperProps) => import("react/jsx-runtime").JSX.Element;
export default CameraContentWrapper;
