import { PageIconResponse } from '@notionhq/client/build/src/api-endpoints';
export type Icon = PageIconResponse | null;
export type GetNotionObjectTitleOptions = {
    emoji?: boolean;
};
export declare const getNotionObjectTitle: (notionObject: unknown, options?: GetNotionObjectTitleOptions) => any;
