import { IComponent } from "../../utils/type/dynamic-rendering.interfaces"; import { saveActiveSectionT } from "../../utils/type/typesTempSectionSides"; export declare const getListSection: ({ ...state }: { [x: string]: any; }) => any; export declare const getInitializationThreekitData: ({ ...state }: { [x: string]: any; }) => any; export declare const getOpenSectionIdInSides: ({ ...state }: { [x: string]: any; }) => any; export declare const getKeySectionActive: ({ ...state }: { [x: string]: any; }) => any; export declare const getIsLoad: ({ ...state }: { [x: string]: any; }) => any; export declare const getIsLoadStateData: ({ ...state }: { [x: string]: any; }) => any; export declare const getListViews: ({ ...state }: { [x: string]: any; }) => any; export declare const getKeyViewActive: ({ ...state }: { [x: string]: any; }) => any; export declare const getVisiblePrice: ({ ...state }: { [x: string]: any; }) => any; export declare const getVisibleSaveConfig: ({ ...state }: { [x: string]: any; }) => any; export declare const getCustomerInfoSetting: ({ ...state }: { [x: string]: any; }) => any; export declare const getActiveSection: ({ ...state }: { [x: string]: any; }) => any; export declare const getSettingConfig: ({ ...state }: { [x: string]: any; }) => any; export declare type valueOption = { selectValue: string; isError: boolean; }; export declare type valueMultipleOption = { selectValue: string[] | null; isError: boolean; }; export declare type getValueOptionT = { idOptions: string; parentKeySection?: any; }; export declare const getValueOption: ({ idOptions, parentKeySection }: getValueOptionT) => (state: any) => valueOption; export declare const getValueMultipleOption: (idOptions: string) => (state: any) => valueMultipleOption; declare type getValueSideSectionOptionT = { selectValue: saveActiveSectionT[] | []; isError: boolean; }; export declare const getValueSideSectionOption: (idOptions: string) => (state: any) => getValueSideSectionOptionT; export declare const getSideSection: (state: any) => IComponent[]; export declare const getNotificationModal: (state: any) => any; export declare const getCustomerInfoValue: (state: any) => boolean; export declare const getActiveSideForSectionSides: (state: any) => any; export declare const getAdditionalSectionsSides: (state: any) => { label: string; value: string; }[]; export {};