import { ButtonProps } from '../../action/Button/types'; import { ActionButtonsProps } from '../../action/ActionButtons/types'; export declare const scanTemplateVariants: (props?: ({ variant?: "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type VisorProps = { isLoading?: boolean; }; export type CameraControlsProps = { onFlashToggle?: () => void; onCameraRotate?: () => void; }; export type ScanTemplateProps = VisorProps & CameraControlsProps & { buttonProps?: ButtonProps; actionButtonsProps?: ActionButtonsProps; onBackPress: () => void; title?: string; }; //# sourceMappingURL=types.d.ts.map