export interface LogoutProps {
    appearance?: {
        theme?: 'light' | 'dark';
    };
    onLogout?: () => void;
    className?: string;
}
export default function Logout({ appearance, onLogout, className, }: LogoutProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Logout.d.ts.map