/// import type { ComponentProps } from './core'; import type { WithStylesProps } from './hoc/types'; export declare type ServerContext = { account_created_at: string; account_id: string; account_uuid: string; client_id: string; client_uuid: string; client_pages_created: number; context_type: string; current_account_id: number; current_user_email: string; current_user_id: number; current_user_name: string; suspected_fraudulent: boolean; env: string; user_id: string; user_uuid: string; user_created_at: string; intercom_user_hash: string; javascript_uis: { 'content-creation-editor': { js: string; }; }; }; export declare type _WithStyles = (Component: (props: ComponentProps & WithStylesProps) => JSX.Element, dataKey: keyof T | [keyof T, string][], styleguideKey?: string | undefined) => (props: ComponentProps) => JSX.Element;