import { AnyAction } from 'redux';
import { CustomerDataState } from './data';
export interface CustomersState {
    data: CustomerDataState;
}
export declare const customersReducer: (state: {}, action: AnyAction) => {};
