interface ICoreSypc {
    _id?: string;
    sypc_key: string;
    sypc_type?: string;
    sypc_placeholder?: string;
    sypc_auto_complete?: string;
    sypc_page_id_sypg?: string;
    sypc_title?: string;
    sypc_title_placement?: SypcTitlePlacement;
    sypc_min_length?: number;
    sypc_max_length?: number;
    sypc_width?: SypcWidth;
    sypc_regex?: string;
    sypc_required?: boolean;
    sypc_tooltip?: string;
    sypc_disabled?: boolean;
    sypc_default?: boolean | string | number;
    sypc_isactive?: boolean;
}
type SypcWidth = number | "sm" | "lg" | "md" | undefined;
type SypcTitlePlacement = "center";
export { ICoreSypc };
