import { FetchState, ID } from '../../commonStateTypes/common'; import { RootState } from '../../rootStateTypes'; export interface AccountingProviderAttachmentSelector { data: ArrayBuffer | undefined; fetchState: FetchState; } export declare const getAccountingProviderAttachment: (state: RootState, attachmentId: ID) => AccountingProviderAttachmentSelector;