export declare const layoutState: readonly ["leading", "trailing"]; export declare type TLayoutState = typeof layoutState[number]; export declare const typeState: readonly ["email", "external", "internal"]; export declare type TTypeState = typeof typeState[number]; export interface LinkToProps { /** * what is the address you are linking to */ address: string; /** * You can set custom text to the link, or leave blank to see the address */ text?: string; /** * set to an email link or a link to another website */ type?: TTypeState; /** * set the position of the icon, or icon only */ iconLayout?: TLayoutState; }