import type { BitflyerPair } from '../../shared/types/currency';
import type { PublicAPI } from '../../shared/types/fetch';
import type { State, Health } from '../../shared/types';
declare type BoardStateOptions = {
    productCode: BitflyerPair;
};
declare type BoardStateResponse = {
    health: Health;
    state: State;
    data?: {
        special_quotation: number;
    };
};
declare const fetchBoardState: PublicAPI<BoardStateOptions, BoardStateResponse>;
export { fetchBoardState };
export type { BoardStateOptions, BoardStateResponse };
//# sourceMappingURL=board_state.d.ts.map