/**
 * Internal dependencies
 */
import type { SequenceResource } from './sequenceResource';
import type { ResourceType } from './resourceType';
export interface Output {
    /** The MIME type of the resource. E.g. "image/png". */
    mimeType: string;
    /** The source URL of the resource. */
    src: string;
}
export interface GifResource extends SequenceResource {
    type: ResourceType.Gif;
    output: Output;
}
//# sourceMappingURL=gifResource.d.ts.map