export interface CouriersFlagsState {
    active: string | null;
    expanded: string[];
}
export declare const initialCourierFlagsState: CouriersFlagsState;
export declare const couriersFlagsReducer: (state: CouriersFlagsState, action: any) => CouriersFlagsState;
