interface IFormatEntry {
    data: {
        [key: string]: unknown;
    };
    locale?: string;
    gatsbyNodeType: string;
    payloadImageSize?: string;
}
export declare const formatEntity: ({ data, locale, gatsbyNodeType, payloadImageSize }: IFormatEntry, context?: any) => {
    payloadImageSize: string;
    locale: string;
    id: unknown;
    gatsbyNodeType: string;
};
export {};
