interface CameraButtonProps { label?: string; size?: 'sm' | 'md' | 'lg' | 'xl'; variant?: 'primary' | 'secondary' | 'ghost' | 'outline' | 'destructive'; disabled?: boolean; accept?: string; capture?: 'user' | 'environment'; class?: string; oncapture?: (file: File) => void; } declare const CameraButton: import("svelte").Component; type CameraButton = ReturnType; export default CameraButton;