import React from 'react'; import { LogoUploaderProps } from './LogoUploader'; export interface OrganizationSettingsProps { onCreateClick?: () => void; showCreateButton?: boolean; /** Upfiles config forwarded to EditOrganizationForm */ upfilesConfig?: LogoUploaderProps['upfilesConfig']; /** Custom delete handler — when provided, called instead of the SDK client */ onDelete?: (organizationId: string) => Promise; } export declare const OrganizationSettings: React.FC;