export type StateAttributesMapping = { [Property in keyof State]?: (state: State[Property]) => Record | null }; export declare function getStateAttributesProps>(state: State, customMapping?: StateAttributesMapping): Record;