import { LinkProps, LinkPreviewTypes } from '../../../types/canvas'; export declare function adjustThemeByPreviewType(previewType: LinkPreviewTypes, data?: LinkProps | null): { backgroundColor: string | undefined; color: string | undefined; }; export declare function getPreviewTypeOptions(t: (input: string) => string): { icon: () => import('vue').VNode; label: string; value: LinkPreviewTypes; }[];