import { GetInitialStateProps as GetInitialStatePropsCommon } from '../../utils';
export type GetInitialStateProps<T> = GetInitialStatePropsCommon<T> & {
    itemToString: (item: T) => string;
};
export declare function getInitialState<T>(props: GetInitialStateProps<T>): any;
