export interface LinkProps { /** * Destination to navigate to. You **must** provide either this property, `onPress`, * or both. */ to?: string; /** Open the link in a new window or tab */ external?: boolean; /** * Unique identifier. Typically used as a target for another component’s controls * to associate an accessible label with an action. */ id?: string; /** * Callback when pressed. If `to` is provided, it will execute the callback and * then navigate to the location specified by `to`. */ onPress?(): void; } /** * Link is used to navigate the buyer to another page. */ export declare const Link: "Link" & { readonly type?: "Link" | undefined; readonly props?: LinkProps | undefined; readonly children?: true | undefined; }; //# sourceMappingURL=Link.d.ts.map