import type { StoreState } from '../types/index.js'; /** * Returns the user's programs. * * @param state - Application state. * * @returns Programs object. */ export declare const getPrograms: (state: StoreState) => Record | undefined; /** * Returns the programs error. * * @param state - Application state. * * @returns - Programs error. */ export declare const getProgramsError: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the result of the programs. * * @param state - Application state. * * @returns - Array of programs ids. */ export declare const getProgramsResult: (state: StoreState) => import("../types/nullable.types.js").Nullable | undefined; /** * Returns the loading status for the programs. * * @param state - Application state. * * @returns - Loading status. */ export declare const areProgramsLoading: (state: StoreState) => boolean; /** * Returns the membership. * * @param state - Application state. * * @returns Membership object. */ export declare const getProgramMembership: (state: StoreState) => Record | undefined; /** * Returns the membership error. * * @param state - Application state. * * @returns - Membership error. */ export declare const getProgramMembershipError: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the result of the membership. * * @param state - Application state. * * @returns - Membership id. */ export declare const getProgramMembershipResult: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the loading status for the membership. * * @param state - Application state. * * @returns - Loading status. */ export declare const isProgramMembershipLoading: (state: StoreState) => boolean; /** * Returns the replacements. * * @param state - Application state. * * @returns Replacements object. */ export declare const getProgramMembershipReplacements: (state: StoreState) => Record | undefined; /** * Returns the replacements error. * * @param state - Application state. * * @returns - Replacements error. */ export declare const getProgramMembershipReplacementsError: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the result of the replacements. * * @param state - Application state. * * @returns - Array of replacements ids. */ export declare const getProgramMembershipReplacementsResult: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the loading status for the replacements. * * @param state - Application state. * * @returns - Loading status. */ export declare const areProgramMembershipReplacementsLoading: (state: StoreState) => boolean; /** * Returns the statements. * * @param state - Application state. * * @returns Converts object. */ export declare const getProgramMembershipConverts: (state: StoreState) => Record | undefined; /** * Returns the converts error. * * @param state - Application state. * * @returns - Converts error. */ export declare const getProgramMembershipConvertsError: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the result of the converts. * * @param state - Application state. * * @returns - Array of converts ids. */ export declare const getProgramMembershipConvertsResult: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the loading status for the converts. * * @param state - Application state. * * @returns - Loading status. */ export declare const areProgramMembershipConvertsLoading: (state: StoreState) => boolean; /** * Returns the statements. * * @param state - Application state. * * @returns Statements object. */ export declare const getProgramMembershipStatements: (state: StoreState) => Record | undefined; /** * Returns the statements error. * * @param state - Application state. * * @returns - Statements error. */ export declare const getProgramMembershipStatementsError: (state: StoreState) => import("../types/nullable.types.js").Nullable; /** * Returns the result of the statements. * * @param state - Application state. * * @returns - Array of statements ids. */ export declare const getProgramMembershipStatementsResult: (state: StoreState) => import("../types/nullable.types.js").Nullable | undefined; /** * Returns the loading status for the statements. * * @param state - Application state. * * @returns - Loading status. */ export declare const areProgramMembershipStatementsLoading: (state: StoreState) => boolean;