import type { GraphQLType } from 'graphql';
export interface TypeExampleProps {
    type: GraphQLType;
    expandLevel: number;
    level?: number;
}
export type TypeExampleGenerator = (props: TypeExampleProps) => unknown;
export declare const getTypeExample: TypeExampleGenerator;
