import React from 'react'; import type { View } from '../../types/ContextProps'; interface SetViewButtonProps { children: React.ReactNode; view: View; closeModal?: boolean; className?: string; onClick?: () => void; } export declare const SetViewButton: ({ children, view, closeModal, className, onClick, }: SetViewButtonProps) => JSX.Element; export {};