import { ICoreSyco } from "./core_system_config";
declare class ICoreSyth {
    _id?: string;
    syth_theme_id?: string;
    syth_theme_name?: string;
    syth_is_public?: boolean;
    syth_is_default?: boolean;
    syth_properties?: any;
}
interface ICoreSythDrawer {
    syth_status: boolean;
    syth_config_syco_for: string;
    /** Optional JSON config per drawer row (e.g. for drawer_docs: array of doc items with title, url, etc.) */
    syth_config_json?: string | Record<string, unknown> | unknown[];
    core_system_config?: ICoreSyco;
}
export { ICoreSyth, // interface
ICoreSythDrawer };
