///
import { Context } from '.';
export declare type GlyphsResult = {
type: 'file';
data: string;
} | {
type: 'raw';
data: Buffer;
etag?: string;
};
export interface GlyphsApi {
getGlyphs(params: {
styleId?: string;
accessToken?: string;
font: string;
start: number;
end: number;
}): Promise;
}
declare function createGlyphsApi({ context }: {
context: Context;
}): GlyphsApi;
export default createGlyphsApi;